home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000253_news@columbia.edu _Thu Mar 21 09:30:10 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id JAA27540 for <kermit.misc@watsun>; Thu, 21 Mar 1996 09:30:08 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id JAA06889 for kermit.misc@watsun; Thu, 21 Mar 1996 09:30:03 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Kermit does not work with 'screen' program
  8. Date: 21 Mar 1996 14:29:46 GMT
  9. Organization: Columbia University
  10. Lines: 38
  11. Message-ID: <4irp4q$6n0@apakabar.cc.columbia.edu>
  12. References: <4iqbbu$sb0@newslink.runet.edu>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4iqbbu$sb0@newslink.runet.edu>, Ilya <ibelooze@runet.edu> wrote:
  16. :  I could not get kermit to work with the 'screen' program.   When I start a
  17. :  new shell with control-a c  and start kermit  in it, files do not transfer
  18. :  at all but I have not figured out why yet. FYI.
  19. >From the ckuker.bwr (C-Kermit for Unix "beware" file):
  20.  
  21. C-Kermit will not work as expected on a remote UNIX system, when used through
  22. the "splitvt" or GNU "screen" programs.  In this case, terminal connections to
  23. the remote UNIX system work, but attempts to transfer files fail because the
  24. screen optimization (or at least, line wrapping, control-character absorption)
  25. done by this package interferes with Kermit's packets.
  26.  
  27. (end quote)
  28.  
  29. You might try the following -- what we call "doomsday Kermit" settings to
  30. push packets through even the densest and most obstructive connections, such
  31. as the one you have.  Give these commands to BOTH Kermit programs:
  32.  
  33.   SET FLOW NONE
  34.   SET CONTROL PREFIX ALL
  35.   SET RECEIVE PACKET-LENGTH 70
  36.   SET RECEIVE START 62       
  37.   SET SEND START 62          
  38.   SET SEND PAUSE 100
  39.   SET BLOCK B                
  40.  
  41. If it works, it will be slow.  But I'll bet you can't find anything else
  42. that works at all.
  43.  
  44. I have heard that there are versions of "screen" floating around that have
  45. been modified to allow regular Kermit transfers through them, but I would
  46. not know where to tell you to start looking for them.
  47.  
  48. Please report back and let us know how it goes.
  49.  
  50. - Frank